home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Files / Browse_Buffer_Directory.bsh next >
Text File  |  2013-07-28  |  1KB  |  48 lines

  1. /*
  2.  * Browse_Buffer_Directory.bsh - a BeanShell macro script for the
  3.  * jEdit text editor - Opens the file system browser at the
  4.  * current buffer's directory.
  5.  * Copyright (C) 2006 Alan Ezust
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version 2
  10.  * of the License, or any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with the jEdit program; if not, write to the Free Software
  19.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  *
  21.  * $Id$
  22.  */
  23. // begin browse_buffer_dir
  24. void Browse_Buffer_Directory()
  25. {
  26.     path = new File(buffer.getPath()).getParent();
  27.     
  28.     if(path != null) {
  29.         VFSBrowser.browseDirectory(view,path);
  30.         wm.showDockableWindow("vfs.browser");
  31.     }
  32.     
  33. }
  34.  
  35. Browse_Buffer_Directory();
  36.  
  37. /*
  38. <listitem>
  39.     <para><filename>Browse_Buffer_Directory.bsh</filename></para>
  40.     <abstract><para>
  41.         Opens a the current buffer's directory in the FSB.
  42.     </para></abstract>
  43. </listitem>
  44. */
  45.  
  46. // end Browse_Buffer_Directory.bsh
  47.  
  48.